home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / etc / init / rcS.conf < prev    next >
Text File  |  2009-10-15  |  822b  |  33 lines

  1. # rcS - System V single-user mode compatibility
  2. #
  3. # This task handles the old System V-style single-user mode, this is
  4. # distinct from the other runlevels since running the rc script would
  5. # be bad.
  6.  
  7. description    "System V single-user mode compatibility"
  8. author        "Scott James Remnant <scott@netsplit.com>"
  9.  
  10. start on runlevel S
  11. stop on runlevel [!S]
  12.  
  13. console owner
  14. script
  15.     if [ -x /usr/share/recovery-mode/recovery-menu ]; then
  16.     exec /usr/share/recovery-mode/recovery-menu
  17.     else
  18.     exec /sbin/sulogin
  19.     fi
  20. end script
  21.  
  22. post-stop script
  23.     # Don't switch runlevels if we were stopped by an event, since that
  24.     # means we're already switching runlevels
  25.     if [ -n "${UPSTART_STOP_EVENTS}" ]
  26.     then
  27.     exit 0
  28.     fi
  29.  
  30.     # Switch, passing a magic flag
  31.     start --no-wait rc-sysinit FROM_SINGLE_USER_MODE=y
  32. end script
  33.